Dashboard Temp Share Shortlinks Frames API

HTMLify

app.js
Views: 12 | Author: huxn-webdev
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
const input = document.querySelector("input");
const eye = document.querySelector("#eye-icon");

eye.addEventListener("click", () => {
  //   if (input.type === "password") {
  //     input.type = "text";
  //   } else {
  //     input.type = "password";
  //   }

  // REFACTOR
  input.type === "password" ? (input.type = "text") : (input.type = "password");
});